* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

nav {
    display: flex;
    gap: 30px;
    font-family: 'Times New Roman', Times, serif !important;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Times New Roman', Times, serif !important;
}

nav a:hover, nav a.active {
    border-bottom: 2px solid #4CAF50;
    color: #4CAF50;
}

header img {
    height: 70px;
    width: auto;
}

.reserva-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.reserva-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

.flatpickr-input {
    background-color: #fff;
}

.resumen-reserva {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border: 1px solid #eee;
}

.resumen-reserva h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.total-reserva {
    text-align: right;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

#total-pagar {
    color: #4CAF50;
    font-size: 1.4rem;
}

.reservar-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    transition: background-color 0.3s;
    font-family: 'Times New Roman', Times, serif !important;
}

.reservar-button:hover {
    background-color: #3e8e41;
}

.info-importante {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.info-importante h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-importante ul {
    list-style-position: inside;
}

.info-importante li {
    margin-bottom: 10px;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.redes-sociales {
    display: flex;
    gap: 15px;
}

.redes-sociales img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.redes-sociales img:hover {
    transform: scale(1.1);
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .reserva-form {
        padding: 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}